home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / artemis1 / src / undo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-11  |  245 b   |  20 lines

  1. /*
  2.     ARTemis (Graphic Editor for FM-TOWNS)
  3.     (c) MATSUUCHI Ryosuke 1992
  4.  
  5.     undo.c
  6.  
  7.     「UNDOコマンド」
  8. */
  9.  
  10. #include <stdio.h>
  11. #include "ge.h"
  12. #include "imageman.h"
  13.  
  14. void commandUndo()
  15. {
  16.     EIMloadbackup();
  17. }
  18.  
  19. /* end of undo.c */
  20.